home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Mac-Source 1994 July
/
Mac-Source_July_1994.iso
/
C and C++
/
Utilities
/
FaderShell
/
Blackout.r
< prev
next >
Wrap
Text File
|
1991-08-22
|
1KB
|
78 lines
/*
Blackout.r - Resources for a simple screen Blackout that runs as a MultiFinder
application. Is typically launched by Lunarmobiscuit's
Darkness MultiFinder screen saver program.
copyright © 1989, 1990, 1991 by Tom Dowdy
All rights reserved
Modifications
Aug 5 1989 TED basic fade working as standalone code
Nov 30 1989 TED file converted to a standalone application
*/
#include "Types.r"
#include "SysTypes.r"
/* A single menu, which MUST be here for MultiFinder to be able to quit */
resource 'MENU' (1, preload) {
1, textMenuProc,
0b0000000000000000000000000000001,
enabled, apple,
{
"Quit",
noicon, nokey, nomark, plain
}
};
/* ------------------------------------------------------------------------ */
/* Version information */
resource 'vers' (1) {
0x02,
0x05,
release,
0x00,
verUS,
"2.5",
"DarkSide Faders 2.5"
};
resource 'vers' (2) {
0x02,
0x05,
release,
0x00,
verUS,
"2.5",
"Dark Side of the Mac 2.5"
};
/* ------------------------------------------------------------------------ */
/* The size resource for our Blackout */
resource 'SIZE' (-1) {
dontSaveScreen,
acceptSuspendResumeEvents,
enableOptionSwitch,
canBackground,
multiFinderAware,
backgroundAndForeground,
dontGetFrontClicks,
ignoreChildDiedEvents,
is32BitCompatible,
reserved,
reserved,
reserved,
reserved,
reserved,
reserved,
reserved,
32*1024,
32*1024
};